Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
getorset-anything
Advanced tools
Gets a value from a Map/Obj or sets an initial value when not found and returns that. TypeScript supported.
npm i getorset-anything
Get a Map/Obj value, or if it didn't exist yet set it and return that. Fully TypeScript supported! A simple & small integration.
I created this package because I always hated doing this over and over again:
const map = new Map<string, number[]>()
const id = 'abc'
let arr = map.get(id)
if (arr === undefined) {
arr = []
map.set(id, arr)
}
arr.push(100)
So that is exactly what getorset-anything
does for you! 💯
getorset-anything
has performance in mind. It won't do a .has()
check, like other libraries do, when it found the value it will immediately return it.
Maps
import { mapGetOrSet } from 'getorset-anything'
const map = new Map<string, number[]>()
const arr = mapGetOrSet(map, 'abc', () => [])
arr.push(100) // OK!
Objects
import { objGetOrSet } from 'getorset-anything'
const obj: Record<string, number[]> = {}
const arr = objGetOrSet(obj, 'abc', () => [])
arr.push(100) // OK!
You don't have to do anything extra for TypeScript! It comes with awesome type support.
import { mapGetOrSet } from 'getorset-anything'
const map = new Map<string, number[]>()
const arr = mapGetOrSet(map, 'abc', () => []) // OK!
const arr2 = mapGetOrSet(map, 'abc', () => ({})) // NG! ⛔️
arr.push(100) // OK!
arr.push('100') // NG! ⛔️
FAQs
Gets a value from a Map/Obj or sets an initial value when not found and returns that. TypeScript supported.
The npm package getorset-anything receives a total of 446 weekly downloads. As such, getorset-anything popularity was classified as not popular.
We found that getorset-anything demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.